/* _______________________________________________________________ */ void Normalize(float x[SIZE][SIZE]) { int j,k; float min,max; /* receive a floating point array x and output an integer global array gnew */ min=100000000.0; max=-10000000.0; for (k=0;k max) max=x[j][k]; if (x[j][k] < min) min=x[j][k]; } for (k=0;k